#include <file.h> or #include "file.h"
Preprocessor-direktive. You can(better: must) use this direktive to use commands which are in these header(.h) files. Enclose compiler headers in <> brackets, .h files in quotation marks("").
#include <stdio.h>//well here it is.
int main()
{
	return 0;
}